home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / code / Firefox_1.0.5.exe / browser.xpi / bin / greprefs / all.js next >
Encoding:
Text File  |  2005-07-11  |  51.2 KB  |  1,080 lines

  1. /* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2.  
  3. /* ***** BEGIN LICENSE BLOCK *****
  4.  
  5.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  6.  
  7.  *
  8.  
  9.  * The contents of this file are subject to the Mozilla Public License Version
  10.  
  11.  * 1.1 (the "License"); you may not use this file except in compliance with
  12.  
  13.  * the License. You may obtain a copy of the License at
  14.  
  15.  * http://www.mozilla.org/MPL/
  16.  
  17.  *
  18.  
  19.  * Software distributed under the License is distributed on an "AS IS" basis,
  20.  
  21.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  22.  
  23.  * for the specific language governing rights and limitations under the
  24.  
  25.  * License.
  26.  
  27.  *
  28.  
  29.  * The Original Code is mozilla.org code.
  30.  
  31.  *
  32.  
  33.  * The Initial Developer of the Original Code is
  34.  
  35.  * Netscape Communications Corporation.
  36.  
  37.  * Portions created by the Initial Developer are Copyright (C) 1998
  38.  
  39.  * the Initial Developer. All Rights Reserved.
  40.  
  41.  *
  42.  
  43.  * Contributor(s):
  44.  
  45.  * Benjamin Smedberg <bsmedberg@covad.net>
  46.  
  47.  *
  48.  
  49.  * Alternatively, the contents of this file may be used under the terms of
  50.  
  51.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  52.  
  53.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  54.  
  55.  * in which case the provisions of the GPL or the LGPL are applicable instead
  56.  
  57.  * of those above. If you wish to allow use of your version of this file only
  58.  
  59.  * under the terms of either the GPL or the LGPL, and not to allow others to
  60.  
  61.  * use your version of this file under the terms of the MPL, indicate your
  62.  
  63.  * decision by deleting the provisions above and replace them with the notice
  64.  
  65.  * and other provisions required by the GPL or the LGPL. If you do not delete
  66.  
  67.  * the provisions above, a recipient may use your version of this file under
  68.  
  69.  * the terms of any one of the MPL, the GPL or the LGPL.
  70.  
  71.  *
  72.  
  73.  * ***** END LICENSE BLOCK ***** */
  74.  
  75.  
  76.  
  77. /* The prefs in this file are shipped with the GRE and should apply to all
  78.  
  79.  * embedding situations. Application-specific preferences belong somewhere else,
  80.  
  81.  * for example xpfe/bootstrap/browser-prefs.js
  82.  
  83.  *
  84.  
  85.  * Platform-specific #ifdefs at the end of this file override the generic
  86.  
  87.  * entries at the top.
  88.  
  89.  */
  90.  
  91.  
  92.  
  93. // SYNTAX HINTS:  dashes are delimiters.  Use underscores instead.
  94.  
  95. //  The first character after a period must be alphabetic.
  96.  
  97.  
  98.  
  99. pref("keyword.URL", "http://www.google.com/search?ie=UTF-8&oe=utf-8&q=");
  100.  
  101. pref("keyword.enabled", false);
  102.  
  103. pref("general.useragent.locale", "chrome://navigator/locale/navigator.properties");
  104.  
  105. pref("general.useragent.contentlocale", "chrome://navigator-region/locale/region.properties");
  106.  
  107.  
  108.  
  109. pref("general.config.obscure_value", 13); // for MCD .cfg files
  110.  
  111.  
  112.  
  113. pref("backups.number_of_prefs_copies", 1);
  114.  
  115.  
  116.  
  117. pref("browser.cache.disk.enable",           true);
  118.  
  119. pref("browser.cache.disk.capacity",         51200);
  120.  
  121. pref("browser.cache.memory.enable",         true);
  122.  
  123. //pref("browser.cache.memory.capacity",     -1);
  124.  
  125. // -1 = determine dynamically, 0 = none, n = memory capacity in kilobytes
  126.  
  127. pref("browser.cache.disk_cache_ssl",        false);
  128.  
  129. // 0 = once-per-session, 1 = each-time, 2 = never, 3 = when-appropriate/automatically
  130.  
  131. pref("browser.cache.check_doc_frequency",   3);
  132.  
  133.  
  134.  
  135. pref("browser.display.use_document_fonts",  1);  // 0 = never, 1 = quick, 2 = always
  136.  
  137. pref("browser.display.use_document_colors", true);
  138.  
  139. pref("browser.display.use_system_colors",   false);
  140.  
  141. pref("browser.display.foreground_color",    "#000000");
  142.  
  143. pref("browser.display.background_color",    "#FFFFFF");
  144.  
  145. pref("browser.display.force_inline_alttext", false); // true = force ALT text for missing images to be layed out inline
  146.  
  147. // 0 = no external leading, 
  148.  
  149. // 1 = use external leading only when font provides, 
  150.  
  151. // 2 = add extra leading both internal leading and external leading are zero
  152.  
  153. pref("browser.display.normal_lineheight_calc_control", 2);
  154.  
  155. pref("browser.display.show_image_placeholders", true); // true = show image placeholders while image is loaded and when image is broken
  156.  
  157. pref("browser.anchor_color",                "#0000EE");
  158.  
  159. pref("browser.active_color",                "#EE0000");
  160.  
  161. pref("browser.visited_color",               "#551A8B");
  162.  
  163. pref("browser.underline_anchors",           true);
  164.  
  165. pref("browser.blink_allowed",               true);
  166.  
  167. pref("browser.enable_automatic_image_resizing", false);
  168.  
  169.  
  170.  
  171. pref("browser.display.use_focus_colors",    false);
  172.  
  173. pref("browser.display.focus_background_color", "#117722");
  174.  
  175. pref("browser.display.focus_text_color",     "#ffffff");
  176.  
  177. pref("browser.display.focus_ring_width",     1);
  178.  
  179. pref("browser.display.focus_ring_on_anything", false);
  180.  
  181.  
  182.  
  183. pref("browser.helperApps.alwaysAsk.force",  false);
  184.  
  185. pref("browser.helperApps.neverAsk.saveToDisk", "");
  186.  
  187. pref("browser.helperApps.neverAsk.openFile", "");
  188.  
  189.  
  190.  
  191. // xxxbsmedberg: where should prefs for the toolkit go?
  192.  
  193. pref("browser.chrome.toolbar_tips",         true);
  194.  
  195. // 0 = Pictures Only, 1 = Text Only, 2 = Pictures and Text
  196.  
  197. pref("browser.chrome.toolbar_style",        2);
  198.  
  199.  
  200.  
  201.  
  202.  
  203. pref("accessibility.browsewithcaret", false);
  204.  
  205. pref("accessibility.warn_on_browsewithcaret", true);
  206.  
  207. // Tab focus model bit field:
  208.  
  209. // 1 focuses text controls, 2 focuses other form elements, 4 adds links.
  210.  
  211. // Most users will want 1, 3, or 7.
  212.  
  213. pref("accessibility.tabfocus", 7);
  214.  
  215. pref("accessibility.usetexttospeech", "");
  216.  
  217. pref("accessibility.usebrailledisplay", "");
  218.  
  219. pref("accessibility.accesskeycausesactivation", true);
  220.  
  221.  
  222.  
  223. // Type Ahead Find
  224.  
  225. pref("accessibility.typeaheadfind", true);
  226.  
  227. pref("accessibility.typeaheadfind.autostart", true);
  228.  
  229. pref("accessibility.typeaheadfind.linksonly", true);
  230.  
  231. pref("accessibility.typeaheadfind.startlinksonly", false);
  232.  
  233. pref("accessibility.typeaheadfind.timeout", 4000);
  234.  
  235. pref("accessibility.typeaheadfind.enabletimeout", true);
  236.  
  237. pref("accessibility.typeaheadfind.soundURL", "default");
  238.  
  239. pref("accessibility.typeaheadfind.enablesound", true);
  240.  
  241.  
  242.  
  243. pref("browser.history_expire_days", 9);
  244.  
  245.  
  246.  
  247. // loading and rendering of framesets and iframes
  248.  
  249. pref("browser.frames.enabled", true);
  250.  
  251.  
  252.  
  253. // form submission
  254.  
  255. pref("browser.forms.submit.backwards_compatible", true);
  256.  
  257.  
  258.  
  259. // xxxbsmedberg more toolkit prefs?
  260.  
  261. // Tab browser preferences.
  262.  
  263. pref("browser.tabs.autoHide", true);
  264.  
  265. pref("browser.tabs.forceHide", false);
  266.  
  267. pref("browser.tabs.loadInBackground", false);
  268.  
  269. pref("browser.tabs.opentabfor.middleclick", false);
  270.  
  271. pref("browser.tabs.opentabfor.urlbar", false);
  272.  
  273. pref("browser.tabs.opentabfor.windowopen", false);
  274.  
  275. pref("browser.tabs.opentabfor.bookmarks", false);
  276.  
  277. pref("browser.tabs.warnOnClose", true);
  278.  
  279. // 0 = append, 1 = replace
  280.  
  281. pref("browser.tabs.loadGroup", 1);
  282.  
  283.  
  284.  
  285. // lets new tab/window load something different than first window
  286.  
  287. // -1 - use navigator startup preference
  288.  
  289. //  0 - loads blank page
  290.  
  291. //  1 - loads home page
  292.  
  293. //  2 - loads last page visited
  294.  
  295. pref("browser.tabs.loadOnNewTab", 0);
  296.  
  297. pref("browser.windows.loadOnNewWindow", 1);
  298.  
  299.  
  300.  
  301. // link handling in tabbed browsers. values from nsIBrowserDOMWindow.
  302.  
  303. pref("browser.link.open_external", 1);
  304.  
  305. pref("browser.link.open_newwindow", 2);
  306.  
  307. pref("browser.link.open_newwindow.ui", 3); // prefs UI version
  308.  
  309. pref("browser.link.open_newwindow.restriction", 0); // values from GlobalWindow
  310.  
  311.  
  312.  
  313. // view source
  314.  
  315. pref("view_source.syntax_highlight", true);
  316.  
  317. pref("view_source.wrap_long_lines", false);
  318.  
  319.  
  320.  
  321. // dispatch left clicks only to content in browser (still allows clicks to chrome/xul)
  322.  
  323. pref("nglayout.events.dispatchLeftClickOnly", true);
  324.  
  325.  
  326.  
  327. // whether or not to use xbl form controls
  328.  
  329. pref("nglayout.debug.enable_xbl_forms", false);
  330.  
  331.  
  332.  
  333. // size of scrollbar snapping region
  334.  
  335. pref("slider.snapMultiplier", 6);
  336.  
  337.  
  338.  
  339. // option to choose plug-in finder
  340.  
  341. pref("application.use_ns_plugin_finder", false);
  342.  
  343.  
  344.  
  345. // URI fixup prefs
  346.  
  347. pref("browser.fixup.alternate.enabled", true);
  348.  
  349. pref("browser.fixup.alternate.prefix", "www.");
  350.  
  351. pref("browser.fixup.alternate.suffix", ".com");
  352.  
  353. pref("browser.fixup.hide_user_pass", true);
  354.  
  355.  
  356.  
  357. // Print header customization
  358.  
  359. // Use the following codes:
  360.  
  361. // &T - Title
  362.  
  363. // &U - Document URL
  364.  
  365. // &D - Date/Time
  366.  
  367. // &P - Page Number
  368.  
  369. // &PT - Page Number "of" Page total
  370.  
  371. // Set each header to a string containing zero or one of these codes
  372.  
  373. // and the code will be replaced in that string by the corresponding data
  374.  
  375. pref("print.print_headerleft", "&T");
  376.  
  377. pref("print.print_headercenter", "");
  378.  
  379. pref("print.print_headerright", "&U");
  380.  
  381. pref("print.print_footerleft", "&PT");
  382.  
  383. pref("print.print_footercenter", "");
  384.  
  385. pref("print.print_footerright", "&D");
  386.  
  387. pref("print.show_print_progress", true);
  388.  
  389.  
  390.  
  391. // xxxbsmedberg: more toolkit prefs
  392.  
  393.  
  394.  
  395. // When this is set to false each window has its own PrintSettings
  396.  
  397. // and a chnage in one window does not affect the others
  398.  
  399. pref("print.use_global_printsettings", true);
  400.  
  401.  
  402.  
  403. // Use the native dialog or the XP dialog?
  404.  
  405. pref("print.use_native_print_dialog", false);
  406.  
  407.  
  408.  
  409. // Save the Printings after each print job
  410.  
  411. pref("print.save_print_settings", true);
  412.  
  413.  
  414.  
  415. pref("print.whileInPrintPreview", true);
  416.  
  417.  
  418.  
  419. // Cache old Presentation when going into Print Preview
  420.  
  421. pref("print.always_cache_old_pres", false);
  422.  
  423.  
  424.  
  425. // Enables you to specify the gap from the edge of the paper to the margin
  426.  
  427. // this is used by both Printing and Print Preview
  428.  
  429. pref("print.print_edge_top", 0); // 1/100 of an inch
  430.  
  431. pref("print.print_edge_left", 0); // 1/100 of an inch
  432.  
  433. pref("print.print_edge_right", 0); // 1/100 of an inch
  434.  
  435. pref("print.print_edge_bottom", 0); // 1/100 of an inch
  436.  
  437.  
  438.  
  439.  
  440.  
  441. // Prefs used by libeditor. Prefs specific to seamonkey composer
  442.  
  443. // belong in mozilla/editor/ui/composer.js
  444.  
  445.  
  446.  
  447. pref("editor.use_custom_colors", false);
  448.  
  449. pref("editor.htmlWrapColumn", 72);
  450.  
  451. pref("editor.singleLine.pasteNewlines",     1);
  452.  
  453. pref("editor.quotesPreformatted",            false);
  454.  
  455. pref("editor.use_css",                       true);
  456.  
  457. pref("editor.css.default_length_unit",       "px");
  458.  
  459. pref("editor.resizing.preserve_ratio",       true);
  460.  
  461. pref("editor.positioning.offset",            0);
  462.  
  463.  
  464.  
  465.  
  466.  
  467. // Default Capability Preferences: Security-Critical! 
  468.  
  469. // Editing these may create a security risk - be sure you know what you're doing
  470.  
  471. //pref("capability.policy.default.barprop.visible.set", "UniversalBrowserWrite");
  472.  
  473.  
  474.  
  475. pref("capability.policy.default_policynames", "mailnews");
  476.  
  477.  
  478.  
  479. pref("capability.policy.default.DOMException.code", "allAccess");
  480.  
  481. pref("capability.policy.default.DOMException.message", "allAccess");
  482.  
  483. pref("capability.policy.default.DOMException.name", "allAccess");
  484.  
  485. pref("capability.policy.default.DOMException.result", "allAccess");
  486.  
  487. pref("capability.policy.default.DOMException.toString.get", "allAccess");
  488.  
  489.  
  490.  
  491. pref("capability.policy.default.History.back.get", "allAccess");
  492.  
  493. pref("capability.policy.default.History.current", "UniversalBrowserRead");
  494.  
  495. pref("capability.policy.default.History.forward.get", "allAccess");
  496.  
  497. pref("capability.policy.default.History.go.get", "allAccess");
  498.  
  499. pref("capability.policy.default.History.item", "UniversalBrowserRead");
  500.  
  501. pref("capability.policy.default.History.next", "UniversalBrowserRead");
  502.  
  503. pref("capability.policy.default.History.previous", "UniversalBrowserRead");
  504.  
  505. pref("capability.policy.default.History.toString", "UniversalBrowserRead");
  506.  
  507.  
  508.  
  509. pref("capability.policy.default.HTMLDocument.close.get", "allAccess");
  510.  
  511. pref("capability.policy.default.HTMLDocument.open.get", "allAccess");
  512.  
  513.  
  514.  
  515. pref("capability.policy.default.Location.hash.set", "allAccess");
  516.  
  517. pref("capability.policy.default.Location.href.set", "allAccess");
  518.  
  519. pref("capability.policy.default.Location.reload.get", "allAccess");
  520.  
  521. pref("capability.policy.default.Location.replace.get", "allAccess");
  522.  
  523.  
  524.  
  525. pref("capability.policy.default.Navigator.preference", "allAccess");
  526.  
  527. pref("capability.policy.default.Navigator.preferenceinternal.get", "UniversalPreferencesRead");
  528.  
  529. pref("capability.policy.default.Navigator.preferenceinternal.set", "UniversalPreferencesWrite");
  530.  
  531.  
  532.  
  533. pref("capability.policy.default.Window.blur.get", "allAccess");
  534.  
  535. pref("capability.policy.default.Window.close.get", "allAccess");
  536.  
  537. pref("capability.policy.default.Window.closed", "allAccess");
  538.  
  539. pref("capability.policy.default.Window.Components", "allAccess");
  540.  
  541. pref("capability.policy.default.Window.document", "allAccess");
  542.  
  543. pref("capability.policy.default.Window.focus.get", "allAccess");
  544.  
  545. pref("capability.policy.default.Window.frames", "allAccess");
  546.  
  547. pref("capability.policy.default.Window.history", "allAccess");
  548.  
  549. pref("capability.policy.default.Window.length", "allAccess");
  550.  
  551. pref("capability.policy.default.Window.location", "allAccess");
  552.  
  553. pref("capability.policy.default.Window.opener", "allAccess");
  554.  
  555. pref("capability.policy.default.Window.parent", "allAccess");
  556.  
  557. pref("capability.policy.default.Window.self", "allAccess");
  558.  
  559. pref("capability.policy.default.Window.top", "allAccess");
  560.  
  561. pref("capability.policy.default.Window.window", "allAccess");
  562.  
  563.  
  564.  
  565. // Restrictions on the DOM for mail/news - see bugs 66938 and 84545
  566.  
  567. pref("capability.policy.mailnews.sites", "mailbox: imap: news:");
  568.  
  569.  
  570.  
  571. pref("capability.policy.mailnews.*.attributes.get", "noAccess");
  572.  
  573. pref("capability.policy.mailnews.*.baseURI.get", "noAccess");
  574.  
  575. pref("capability.policy.mailnews.*.data.get", "noAccess");
  576.  
  577. pref("capability.policy.mailnews.*.getAttribute", "noAccess");
  578.  
  579. pref("capability.policy.mailnews.*.getAttributeNS", "noAccess");
  580.  
  581. pref("capability.policy.mailnews.*.getNamedItem", "noAccess");
  582.  
  583. pref("capability.policy.mailnews.*.getNamedItemNS", "noAccess");
  584.  
  585. pref("capability.policy.mailnews.*.host.get", "noAccess");
  586.  
  587. pref("capability.policy.mailnews.*.hostname.get", "noAccess");
  588.  
  589. pref("capability.policy.mailnews.*.href.get", "noAccess");
  590.  
  591. pref("capability.policy.mailnews.*.innerHTML.get", "noAccess");
  592.  
  593. pref("capability.policy.mailnews.*.lowSrc.get", "noAccess");
  594.  
  595. pref("capability.policy.mailnews.*.nodeValue.get", "noAccess");
  596.  
  597. pref("capability.policy.mailnews.*.pathname.get", "noAccess");
  598.  
  599. pref("capability.policy.mailnews.*.protocol.get", "noAccess");
  600.  
  601. pref("capability.policy.mailnews.*.src.get", "noAccess");
  602.  
  603. pref("capability.policy.mailnews.*.substringData.get", "noAccess");
  604.  
  605. pref("capability.policy.mailnews.*.text.get", "noAccess");
  606.  
  607. pref("capability.policy.mailnews.*.title.get", "noAccess");
  608.  
  609. pref("capability.policy.mailnews.DOMException.toString", "noAccess");
  610.  
  611. pref("capability.policy.mailnews.HTMLAnchorElement.toString", "noAccess");
  612.  
  613. pref("capability.policy.mailnews.HTMLDocument.domain", "noAccess");
  614.  
  615. pref("capability.policy.mailnews.HTMLDocument.URL", "noAccess");
  616.  
  617. pref("capability.policy.mailnews.Location.toString", "noAccess");
  618.  
  619. pref("capability.policy.mailnews.Range.toString", "noAccess");
  620.  
  621. pref("capability.policy.mailnews.Window.blur", "noAccess");
  622.  
  623. pref("capability.policy.mailnews.Window.focus", "noAccess");
  624.  
  625. pref("capability.policy.mailnews.Window.innerWidth.set", "noAccess");
  626.  
  627. pref("capability.policy.mailnews.Window.innerHeight.set", "noAccess");
  628.  
  629. pref("capability.policy.mailnews.Window.moveBy", "noAccess");
  630.  
  631. pref("capability.policy.mailnews.Window.moveTo", "noAccess");
  632.  
  633. pref("capability.policy.mailnews.Window.name.set", "noAccess");
  634.  
  635. pref("capability.policy.mailnews.Window.outerHeight.set", "noAccess");
  636.  
  637. pref("capability.policy.mailnews.Window.outerWidth.set", "noAccess");
  638.  
  639. pref("capability.policy.mailnews.Window.resizeBy", "noAccess");
  640.  
  641. pref("capability.policy.mailnews.Window.resizeTo", "noAccess");
  642.  
  643. pref("capability.policy.mailnews.Window.screenX.set", "noAccess");
  644.  
  645. pref("capability.policy.mailnews.Window.screenY.set", "noAccess");
  646.  
  647. pref("capability.policy.mailnews.Window.sizeToContent", "noAccess");
  648.  
  649. pref("capability.policy.mailnews.document.load", "noAccess");
  650.  
  651. pref("capability.policy.mailnews.XMLHttpRequest.channel", "noAccess");
  652.  
  653. pref("capability.policy.mailnews.XMLHttpRequest.responseXML", "noAccess");
  654.  
  655. pref("capability.policy.mailnews.XMLHttpRequest.responseText", "noAccess");
  656.  
  657. pref("capability.policy.mailnews.XMLHttpRequest.status", "noAccess");
  658.  
  659. pref("capability.policy.mailnews.XMLHttpRequest.statusText", "noAccess");
  660.  
  661. pref("capability.policy.mailnews.XMLHttpRequest.abort", "noAccess");
  662.  
  663. pref("capability.policy.mailnews.XMLHttpRequest.getAllResponseHeaders", "noAccess");
  664.  
  665. pref("capability.policy.mailnews.XMLHttpRequest.getResponseHeader", "noAccess");
  666.  
  667. pref("capability.policy.mailnews.XMLHttpRequest.open", "noAccess");
  668.  
  669. pref("capability.policy.mailnews.XMLHttpRequest.send", "noAccess");
  670.  
  671. pref("capability.policy.mailnews.XMLHttpRequest.setRequestHeader", "noAccess");
  672.  
  673. pref("capability.policy.mailnews.XMLHttpRequest.readyState", "noAccess");
  674.  
  675. pref("capability.policy.mailnews.XMLHttpRequest.overrideMimeType", "noAccess");
  676.  
  677. pref("capability.policy.mailnews.XMLHttpRequest.onload", "noAccess");
  678.  
  679. pref("capability.policy.mailnews.XMLHttpRequest.onerror", "noAccess");
  680.  
  681. pref("capability.policy.mailnews.XMLHttpRequest.onreadystatechange", "noAccess");
  682.  
  683. pref("capability.policy.mailnews.XMLSerializer.serializeToString", "noAccess");
  684.  
  685. pref("capability.policy.mailnews.XMLSerializer.serializeToStream", "noAccess");
  686.  
  687. pref("capability.policy.mailnews.DOMParser,parseFromString", "noAccess");
  688.  
  689. pref("capability.policy.mailnews.DOMParser,parseFromStream", "noAccess");
  690.  
  691. pref("capability.policy.mailnews.SOAPCall.transportURI", "noAccess");
  692.  
  693. pref("capability.policy.mailnews.SOAPCall.verifySourceHeader", "noAccess");
  694.  
  695. pref("capability.policy.mailnews.SOAPCall.invoke", "noAccess");
  696.  
  697. pref("capability.policy.mailnews.SOAPCall.asyncInvoke", "noAccess");
  698.  
  699. pref("capability.policy.mailnews.SOAPResponse.fault", "noAccess");
  700.  
  701. pref("capability.policy.mailnews.SOAPEncoding.styleURI", "noAccess");
  702.  
  703. pref("capability.policy.mailnews.SOAPEncoding.getAssociatedEncoding", "noAccess");
  704.  
  705. pref("capability.policy.mailnews.SOAPEncoding.setEncoder", "noAccess");
  706.  
  707. pref("capability.policy.mailnews.SOAPEncoding.getEncoder", "noAccess");
  708.  
  709. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  710.  
  711. pref("capability.policy.mailnews.SOAPEncoding.setDecoder", "noAccess");
  712.  
  713. pref("capability.policy.mailnews.SOAPEncoding.getDecoder", "noAccess");
  714.  
  715. pref("capability.policy.mailnews.SOAPEncoding.defaultEncoder", "noAccess");
  716.  
  717. pref("capability.policy.mailnews.SOAPEncoding.defaultDecoder", "noAccess");
  718.  
  719. pref("capability.policy.mailnews.SOAPEncoding.schemaCollection", "noAccess");
  720.  
  721. pref("capability.policy.mailnews.SOAPEncoding.encode", "noAccess");
  722.  
  723. pref("capability.policy.mailnews.SOAPEncoding.decode", "noAccess");
  724.  
  725. pref("capability.policy.mailnews.SOAPEncoding.mapSchemaURI", "noAccess");
  726.  
  727. pref("capability.policy.mailnews.SOAPEncoding.unmapSchemaURI", "noAccess");
  728.  
  729. pref("capability.policy.mailnews.SOAPEncoding.getInternalSchemaURI", "noAccess");
  730.  
  731. pref("capability.policy.mailnews.SOAPEncoding.getExternalSchemaURI", "noAccess");
  732.  
  733. pref("capability.policy.mailnews.SOAPFault.element", "noAccess");
  734.  
  735. pref("capability.policy.mailnews.SOAPFault.faultNamespaceURI", "noAccess");
  736.  
  737. pref("capability.policy.mailnews.SOAPFault.faultCode", "noAccess");
  738.  
  739. pref("capability.policy.mailnews.SOAPFault.faultString", "noAccess");
  740.  
  741. pref("capability.policy.mailnews.SOAPFault.faultActor", "noAccess");
  742.  
  743. pref("capability.policy.mailnews.SOAPFault.detail", "noAccess");
  744.  
  745. pref("capability.policy.mailnews.SOAPHeaderBlock.actorURI", "noAccess");
  746.  
  747. pref("capability.policy.mailnews.SOAPHeaderBlock.mustUnderstand", "noAccess");
  748.  
  749. pref("capability.policy.mailnews.SOAPParameter", "noAccess");
  750.  
  751. pref("capability.policy.mailnews.SOAPPropertyBagMutator.propertyBag", "noAccess");
  752.  
  753. pref("capability.policy.mailnews.SOAPPropertyBagMutator.addProperty", "noAccess");
  754.  
  755. pref("capability.policy.mailnews.SchemaLoader.load", "noAccess");
  756.  
  757. pref("capability.policy.mailnews.SchemaLoader.loadAsync", "noAccess");
  758.  
  759. pref("capability.policy.mailnews.SchemaLoader.processSchemaElement", "noAccess");
  760.  
  761. pref("capability.policy.mailnews.SchemaLoader.onLoad", "noAccess");
  762.  
  763. pref("capability.policy.mailnews.SchemaLoader.onError", "noAccess");
  764.  
  765. pref("capability.policy.mailnews.WSDLLoader.load", "noAccess");
  766.  
  767. pref("capability.policy.mailnews.WSDLLoader.loadAsync", "noAccess");
  768.  
  769. pref("capability.policy.mailnews.WSDLLoader.onLoad", "noAccess");
  770.  
  771. pref("capability.policy.mailnews.WSDLLoader.onError", "noAccess");
  772.  
  773. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxy", "noAccess");
  774.  
  775. pref("capability.policy.mailnews.WebServiceProxyFactory.createProxyAsync", "noAccess");
  776.  
  777. pref("capability.policy.mailnews.WebServiceProxyFactory.onLoad", "noAccess");
  778.  
  779. pref("capability.policy.mailnews.WebServiceProxyFactory.onError", "noAccess");
  780.  
  781.  
  782.  
  783. // XMLExtras
  784.  
  785. pref("capability.policy.default.XMLHttpRequest.channel", "noAccess");
  786.  
  787. pref("capability.policy.default.DOMParser.parseFromStream", "noAccess");
  788.  
  789.  
  790.  
  791. // Clipboard
  792.  
  793. pref("capability.policy.default.Clipboard.cutcopy", "noAccess");
  794.  
  795. pref("capability.policy.default.Clipboard.paste", "noAccess");
  796.  
  797.  
  798.  
  799. // Scripts & Windows prefs
  800.  
  801. pref("dom.disable_image_src_set",           false);
  802.  
  803. pref("dom.disable_window_flip",             false);
  804.  
  805. pref("dom.disable_window_move_resize",      false);
  806.  
  807. pref("dom.disable_window_status_change",    false);
  808.  
  809.  
  810.  
  811. pref("dom.disable_window_open_feature.titlebar",    false);
  812.  
  813. pref("dom.disable_window_open_feature.close",       false);
  814.  
  815. pref("dom.disable_window_open_feature.toolbar",     false);
  816.  
  817. pref("dom.disable_window_open_feature.location",    false);
  818.  
  819. pref("dom.disable_window_open_feature.directories", false);
  820.  
  821. pref("dom.disable_window_open_feature.personalbar", false);
  822.  
  823. pref("dom.disable_window_open_feature.menubar",     false);
  824.  
  825. pref("dom.disable_window_open_feature.scrollbars",  false);
  826.  
  827. pref("dom.disable_window_open_feature.resizable",   false);
  828.  
  829. pref("dom.disable_window_open_feature.minimizable", false);
  830.  
  831. pref("dom.disable_window_open_feature.status",      false);
  832.  
  833.  
  834.  
  835. pref("dom.allow_scripts_to_close_windows",          false);
  836.  
  837.  
  838.  
  839. pref("dom.disable_open_during_load",                false);
  840.  
  841. pref("dom.popup_maximum",                           20);
  842.  
  843. pref("dom.popup_allowed_events", "change click dblclick mouseup reset submit");
  844.  
  845. pref("dom.disable_open_click_delay", 1000);
  846.  
  847.  
  848.  
  849. pref("dom.event.contextmenu.enabled",       true);
  850.  
  851.  
  852.  
  853. pref("javascript.enabled",                  true);
  854.  
  855. pref("javascript.allow.mailnews",           false);
  856.  
  857. pref("javascript.options.strict",           false);
  858.  
  859.  
  860.  
  861. // advanced prefs
  862.  
  863. pref("advanced.always_load_images",         true);
  864.  
  865. pref("security.enable_java",                true);
  866.  
  867. pref("advanced.mailftp",                    false);
  868.  
  869. pref("image.animation_mode",                "normal");
  870.  
  871.  
  872.  
  873. // If there is ever a security firedrill that requires
  874.  
  875. // us to block certian ports global, this is the pref 
  876.  
  877. // to use.  Is is a comma delimited list of port numbers
  878.  
  879. // for example:
  880.  
  881. //   pref("network.security.ports.banned", "1,2,3,4,5");
  882.  
  883. // prevents necko connecting to ports 1-5 unless the protocol
  884.  
  885. // overrides.
  886.  
  887.  
  888.  
  889. // Default action for unlisted external protocol handlers
  890.  
  891. pref("network.protocol-handler.external-default", true);      // OK to load
  892.  
  893. pref("network.protocol-handler.warn-external-default", true); // warn before load
  894.  
  895.  
  896.  
  897. // Prevent using external protocol handlers for these schemes
  898.  
  899. pref("network.protocol-handler.external.hcp", false);
  900.  
  901. pref("network.protocol-handler.external.vbscript", false);
  902.  
  903. pref("network.protocol-handler.external.javascript", false);
  904.  
  905. pref("network.protocol-handler.external.data", false);
  906.  
  907. pref("network.protocol-handler.external.ms-help", false);
  908.  
  909. pref("network.protocol-handler.external.shell", false);
  910.  
  911. pref("network.protocol-handler.external.vnd.ms.radio", false);
  912.  
  913. pref("network.protocol-handler.external.help", false);
  914.  
  915. pref("network.protocol-handler.external.disk", false);
  916.  
  917. pref("network.protocol-handler.external.disks", false);
  918.  
  919. pref("network.protocol-handler.external.afp", false);
  920.  
  921.  
  922.  
  923. // An exposed protocol handler is one that can be used in all contexts.  A
  924.  
  925. // non-exposed protocol handler is one that can only be used internally by the
  926.  
  927. // application.  For example, a non-exposed protocol would not be loaded by the
  928.  
  929. // application in response to a link click or a X-remote openURL command.
  930.  
  931. // Instead, it would be deferred to the system's external protocol handler.
  932.  
  933. // Only internal/built-in protocol handlers can be marked as exposed.
  934.  
  935.  
  936.  
  937. // This pref controls the default settings.  Per protocol settings can be used
  938.  
  939. // to override this value.
  940.  
  941. pref("network.protocol-handler.expose-all", true);
  942.  
  943.  
  944.  
  945. // Example: make IMAP an exposed protocol
  946.  
  947. // pref("network.protocol-handler.expose.imap", true);
  948.  
  949.  
  950.  
  951. pref("network.hosts.smtp_server",           "mail");
  952.  
  953. pref("network.hosts.pop_server",            "mail");
  954.  
  955.  
  956.  
  957. // <http>
  958.  
  959. pref("network.http.version", "1.1");      // default
  960.  
  961. // pref("network.http.version", "1.0");   // uncomment this out in case of problems
  962.  
  963. // pref("network.http.version", "0.9");   // it'll work too if you're crazy
  964.  
  965. // keep-alive option is effectively obsolete. Nevertheless it'll work with
  966.  
  967. // some older 1.0 servers:
  968.  
  969.  
  970.  
  971. pref("network.http.proxy.version", "1.1");    // default
  972.  
  973. // pref("network.http.proxy.version", "1.0"); // uncomment this out in case of problems
  974.  
  975.                                               // (required if using junkbuster proxy)
  976.  
  977.  
  978.  
  979. // enable caching of http documents
  980.  
  981. pref("network.http.use-cache", true);
  982.  
  983.  
  984.  
  985. // this preference can be set to override the socket type used for normal
  986.  
  987. // HTTP traffic.  an empty value indicates the normal TCP/IP socket type.
  988.  
  989. pref("network.http.default-socket-type", "");
  990.  
  991.  
  992.  
  993. pref("network.http.keep-alive", true); // set it to false in case of problems
  994.  
  995. pref("network.http.proxy.keep-alive", true);
  996.  
  997. pref("network.http.keep-alive.timeout", 300);
  998.  
  999.  
  1000.  
  1001. // limit the absolute number of http connections.
  1002.  
  1003. pref("network.http.max-connections", 24);
  1004.  
  1005.  
  1006.  
  1007. // limit the absolute number of http connections that can be established per
  1008.  
  1009. // host.  if a http proxy server is enabled, then the "server" is the proxy
  1010.  
  1011. // server.  Otherwise, "server" is the http origin server.
  1012.  
  1013. pref("network.http.max-connections-per-server", 8);
  1014.  
  1015.  
  1016.  
  1017. // if network.http.keep-alive is true, and if NOT connecting via a proxy, then
  1018.  
  1019. // a new connection will only be attempted if the number of active persistent
  1020.  
  1021. // connections to the server is less then max-persistent-connections-per-server.
  1022.  
  1023. pref("network.http.max-persistent-connections-per-server", 2);
  1024.  
  1025.  
  1026.  
  1027. // if network.http.keep-alive is true, and if connecting via a proxy, then a
  1028.  
  1029. // new connection will only be attempted if the number of active persistent
  1030.  
  1031. // connections to the proxy is less then max-persistent-connections-per-proxy.
  1032.  
  1033. pref("network.http.max-persistent-connections-per-proxy", 4);
  1034.  
  1035.  
  1036.  
  1037. // amount of time (in seconds) to suspend pending requests, before spawning a
  1038.  
  1039. // new connection, once the limit on the number of persistent connections per
  1040.  
  1041. // host has been reached.  however, a new connection will not be created if
  1042.  
  1043. // max-connections or max-connections-per-server has also been reached.
  1044.  
  1045. pref("network.http.request.max-start-delay", 10);
  1046.  
  1047.  
  1048.  
  1049. // http specific network timeouts (XXX currently unused)
  1050.  
  1051. pref("network.http.connect.timeout",  30);    // in seconds
  1052.  
  1053. pref("network.http.request.timeout", 120);    // in seconds
  1054.  
  1055.  
  1056.  
  1057. // Headers
  1058.  
  1059. pref("network.http.accept.default", "text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
  1060.  
  1061. pref("network.http.sendRefererHeader",      2); // 0=don't send any, 1=send only on clicks, 2=send on image requests as well
  1062.  
  1063.  
  1064.  
  1065. // Controls whether we send HTTPS referres to other HTTPS sites.
  1066.  
  1067. // By default this is enabled for compatibility (see bug 141641)
  1068.  
  1069. pref("network.http.sendSecureXSiteReferrer", true);
  1070.  
  1071.  
  1072.  
  1073. // Maximum number of consecutive redirects before aborting.
  1074.  
  1075. pref("network.http.redirection-limit", 20);
  1076.  
  1077.  
  1078.  
  1079. // Enable http compression: comment this out in case of problems with 1.1
  1080.  
  1081. // NOTE: support for "compress" has been disabled per bug 196406.
  1082.  
  1083. pref("network.http.accept-encoding" ,"gzip,deflate");
  1084.  
  1085.  
  1086.  
  1087. pref("network.http.pipelining"      , false);
  1088.  
  1089. pref("network.http.proxy.pipelining", false);
  1090.  
  1091.  
  1092.  
  1093. // Max number of requests in the pipeline
  1094.  
  1095. pref("network.http.pipelining.maxrequests" , 4);
  1096.  
  1097.  
  1098.  
  1099. // </http>
  1100.  
  1101.  
  1102.  
  1103. // This preference controls whether or not internationalized domain names (IDN)
  1104.  
  1105. // are handled.  IDN requires a nsIIDNService implementation.
  1106.  
  1107. pref("network.enableIDN", true);
  1108.  
  1109.  
  1110.  
  1111. // This preference, if true, causes all UTF-8 domain names to be normalized to
  1112.  
  1113. // punycode.  The intention is to allow UTF-8 domain names as input, but never
  1114.  
  1115. // generate them from punycode.
  1116.  
  1117. pref("network.IDN_show_punycode", true);
  1118.  
  1119.  
  1120.  
  1121. // This preference specifies a list of domains for which DNS lookups will be
  1122.  
  1123. // IPv4 only. Works around broken DNS servers which can't handle IPv6 lookups
  1124.  
  1125. // and/or allows the user to disable IPv6 on a per-domain basis. See bug 68796.
  1126.  
  1127. pref("network.dns.ipv4OnlyDomains", ".doubleclick.net");
  1128.  
  1129.  
  1130.  
  1131. // This preference can be used to turn off IPv6 name lookups. See bug 68796.
  1132.  
  1133. pref("network.dns.disableIPv6", false);
  1134.  
  1135.  
  1136.  
  1137. // This preference controls whether or not URLs with UTF-8 characters are
  1138.  
  1139. // escaped.  Set this preference to TRUE for strict RFC2396 conformance.
  1140.  
  1141. pref("network.standard-url.escape-utf8", true);
  1142.  
  1143.  
  1144.  
  1145. // This preference controls whether or not URLs are always encoded and sent as
  1146.  
  1147. // UTF-8.
  1148.  
  1149. pref("network.standard-url.encode-utf8", false);
  1150.  
  1151.  
  1152.  
  1153. // Idle timeout for ftp control connections - 5 minute default
  1154.  
  1155. pref("network.ftp.idleConnectionTimeout", 300);
  1156.  
  1157.  
  1158.  
  1159. // directory listing format - constants are defined in nsIDirectoryListing.idl
  1160.  
  1161. // Do not set this to 0...
  1162.  
  1163. pref("network.dir.format", 2);
  1164.  
  1165.  
  1166.  
  1167. // enables the prefetch service (i.e., prefetching of <link rel="next"> URLs).
  1168.  
  1169. pref("network.prefetch-next", true);
  1170.  
  1171.  
  1172.  
  1173.  
  1174.  
  1175. // The following prefs pertain to the negotiate-auth extension (see bug 17578),
  1176.  
  1177. // which provides transparent Kerberos or NTLM authentication using the SPNEGO
  1178.  
  1179. // protocol.  Each pref is a comma-separated list of keys, where each key has
  1180.  
  1181. // the format:
  1182.  
  1183. //   [scheme "://"] [host [":" port]]
  1184.  
  1185. // For example, "foo.com" would match "http://www.foo.com/bar", etc.
  1186.  
  1187.  
  1188.  
  1189. // This list controls which URIs can use the negotiate-auth protocol.  This
  1190.  
  1191. // list should be limited to the servers you know you'll need to login to.
  1192.  
  1193. pref("network.negotiate-auth.trusted-uris", "");
  1194.  
  1195. // This list controls which URIs can support delegation.
  1196.  
  1197. pref("network.negotiate-auth.delegation-uris", "");
  1198.  
  1199.  
  1200.  
  1201. // The following prefs are used to enable automatic use of the operating
  1202.  
  1203. // system's NTLM implementation to silently authenticate the user with their
  1204.  
  1205. // Window's domain logon.  By default, this is enabled for proxy servers.
  1206.  
  1207. // The trusted-uris pref follows the format of the trusted-uris pref for
  1208.  
  1209. // negotiate authentication.
  1210.  
  1211. pref("network.automatic-ntlm-auth.allow-proxies", true);
  1212.  
  1213. pref("network.automatic-ntlm-auth.trusted-uris", "");
  1214.  
  1215.  
  1216.  
  1217.  
  1218.  
  1219. // sspitzer:  change this back to "news" when we get to beta.
  1220.  
  1221. // for now, set this to news.mozilla.org because you can only
  1222.  
  1223. // post to the server specified by this pref.
  1224.  
  1225. pref("network.hosts.nntp_server",           "news.mozilla.org");
  1226.  
  1227.  
  1228.  
  1229. pref("network.image.imageBehavior",         0); // 0-Accept, 1-dontAcceptForeign, 2-dontUse
  1230.  
  1231. pref("network.image.warnAboutImages",       false);
  1232.  
  1233. pref("network.proxy.autoconfig_url",        "");
  1234.  
  1235. pref("network.proxy.type",                  0);
  1236.  
  1237. pref("network.proxy.ftp",                   "");
  1238.  
  1239. pref("network.proxy.ftp_port",              0);
  1240.  
  1241. pref("network.proxy.gopher",                "");
  1242.  
  1243. pref("network.proxy.gopher_port",           0);
  1244.  
  1245. pref("network.proxy.http",                  "");
  1246.  
  1247. pref("network.proxy.http_port",             0);
  1248.  
  1249. pref("network.proxy.ssl",                   "");
  1250.  
  1251. pref("network.proxy.ssl_port",              0);
  1252.  
  1253. pref("network.proxy.socks",                 "");
  1254.  
  1255. pref("network.proxy.socks_port",            0);
  1256.  
  1257. pref("network.proxy.socks_version",         5);
  1258.  
  1259. pref("network.proxy.no_proxies_on",         "localhost, 127.0.0.1");
  1260.  
  1261. pref("network.online",                      true); //online/offline
  1262.  
  1263. pref("network.cookie.cookieBehavior",       3); // 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
  1264.  
  1265. pref("network.cookie.disableCookieForMailNews", true); // disable all cookies for mail
  1266.  
  1267. pref("network.cookie.lifetimePolicy",       0); // accept normally, 1-askBeforeAccepting, 2-acceptForSession,3-acceptForNDays
  1268.  
  1269. pref("network.cookie.alwaysAcceptSessionCookies", false);
  1270.  
  1271. pref("network.cookie.prefsMigrated",        false);
  1272.  
  1273. pref("network.cookie.lifetime.days",        90);
  1274.  
  1275.  
  1276.  
  1277. // The following default value is for p3p medium mode.
  1278.  
  1279. // See extensions/cookie/resources/content/p3p.xul for the definitions of low/medium/hi
  1280.  
  1281. pref("network.cookie.p3p",                  "ffffaaaa");
  1282.  
  1283. pref("network.cookie.p3plevel",             1); // 0=low, 1=medium, 2=high, 3=custom
  1284.  
  1285.  
  1286.  
  1287. pref("network.enablePad",                   false); // Allow client to do proxy autodiscovery
  1288.  
  1289. pref("converter.html2txt.structs",          true); // Output structured phrases (strong, em, code, sub, sup, b, i, u)
  1290.  
  1291. pref("converter.html2txt.header_strategy",  1); // 0 = no indention; 1 = indention, increased with header level; 2 = numbering and slight indention
  1292.  
  1293.  
  1294.  
  1295. pref("intl.accept_languages",               "chrome://navigator/locale/navigator.properties");
  1296.  
  1297. pref("intl.accept_charsets",                "iso-8859-1,*,utf-8");
  1298.  
  1299. pref("intl.collationOption",                "chrome://navigator-platform/locale/navigator.properties");
  1300.  
  1301. pref("intl.menuitems.alwaysappendaccesskeys","chrome://navigator/locale/navigator.properties");
  1302.  
  1303. pref("intl.charsetmenu.browser.static",     "chrome://navigator/locale/navigator.properties");
  1304.  
  1305. pref("intl.charsetmenu.browser.more1",      "chrome://navigator/locale/navigator.properties");
  1306.  
  1307. pref("intl.charsetmenu.browser.more2",      "chrome://navigator/locale/navigator.properties");
  1308.  
  1309. pref("intl.charsetmenu.browser.more3",      "chrome://navigator/locale/navigator.properties");
  1310.  
  1311. pref("intl.charsetmenu.browser.more4",      "chrome://navigator/locale/navigator.properties");
  1312.  
  1313. pref("intl.charsetmenu.browser.more5",      "chrome://navigator/locale/navigator.properties");
  1314.  
  1315. pref("intl.charsetmenu.browser.unicode",    "chrome://navigator/locale/navigator.properties");
  1316.  
  1317. pref("intl.charsetmenu.mailedit",           "chrome://navigator/locale/navigator.properties");
  1318.  
  1319. pref("intl.charsetmenu.browser.cache",      "");
  1320.  
  1321. pref("intl.charsetmenu.mailview.cache",     "");
  1322.  
  1323. pref("intl.charsetmenu.composer.cache",     "");
  1324.  
  1325. pref("intl.charsetmenu.browser.cache.size", 5);
  1326.  
  1327. pref("intl.charset.detector",               "chrome://navigator/locale/navigator.properties");
  1328.  
  1329. pref("intl.charset.default",                "chrome://navigator-platform/locale/navigator.properties");
  1330.  
  1331. pref("intl.content.langcode",               "chrome://communicator-region/locale/region.properties");
  1332.  
  1333. pref("intl.locale.matchOS",                 false);
  1334.  
  1335. // fallback charset list for Unicode conversion (converting from Unicode)
  1336.  
  1337. // currently used for mail send only to handle symbol characters (e.g Euro, trademark, smartquotes)
  1338.  
  1339. // for ISO-8859-1
  1340.  
  1341. pref("intl.fallbackCharsetList.ISO-8859-1", "windows-1252");
  1342.  
  1343. pref("font.language.group",                 "chrome://navigator/locale/navigator.properties");
  1344.  
  1345.  
  1346.  
  1347. pref("images.dither", "auto");
  1348.  
  1349. pref("security.directory",              "");
  1350.  
  1351.  
  1352.  
  1353. pref("signed.applets.codebase_principal_support", false);
  1354.  
  1355. pref("security.checkloaduri", true);
  1356.  
  1357. pref("security.xpconnect.plugin.unrestricted", true);
  1358.  
  1359. // security-sensitive dialogs should delay button enabling. In milliseconds.
  1360.  
  1361. pref("security.dialog_enable_delay", 2000);
  1362.  
  1363.  
  1364.  
  1365. // Modifier key prefs: default to Windows settings,
  1366.  
  1367. // menu access key = alt, accelerator key = control.
  1368.  
  1369. // Use 17 for Ctrl, 18 for Alt, 224 for Meta, 0 for none. Mac settings in macprefs.js
  1370.  
  1371. pref("ui.key.accelKey", 17);
  1372.  
  1373. pref("ui.key.generalAccessKey", 18);
  1374.  
  1375. pref("ui.key.menuAccessKey", 18);
  1376.  
  1377.  
  1378.  
  1379. pref("ui.key.menuAccessKeyFocuses", false); // overridden below
  1380.  
  1381. pref("ui.key.saveLink.shift", true); // true = shift, false = meta
  1382.  
  1383.  
  1384.  
  1385. // Middle-mouse handling
  1386.  
  1387. pref("middlemouse.paste", false);
  1388.  
  1389. pref("middlemouse.openNewWindow", true);
  1390.  
  1391. pref("middlemouse.contentLoadURL", false);
  1392.  
  1393. pref("middlemouse.scrollbarPosition", false);
  1394.  
  1395.  
  1396.  
  1397. // Clipboard behavior
  1398.  
  1399. pref("clipboard.autocopy", false);
  1400.  
  1401.  
  1402.  
  1403. // 0=lines, 1=pages, 2=history , 3=text size
  1404.  
  1405. pref("mousewheel.withnokey.action",0);
  1406.  
  1407. pref("mousewheel.withnokey.numlines",1);    
  1408.  
  1409. pref("mousewheel.withnokey.sysnumlines",true);
  1410.  
  1411. pref("mousewheel.withcontrolkey.action",0);
  1412.  
  1413. pref("mousewheel.withcontrolkey.numlines",1);
  1414.  
  1415. pref("mousewheel.withcontrolkey.sysnumlines",true);
  1416.  
  1417. pref("mousewheel.withshiftkey.action",0);
  1418.  
  1419. pref("mousewheel.withshiftkey.numlines",1);
  1420.  
  1421. pref("mousewheel.withshiftkey.sysnumlines",true);
  1422.  
  1423. pref("mousewheel.withaltkey.action",2);
  1424.  
  1425. pref("mousewheel.withaltkey.numlines",1);
  1426.  
  1427. pref("mousewheel.withaltkey.sysnumlines",false);
  1428.  
  1429. pref("mousewheel.horizscroll.withnokey.action",2);
  1430.  
  1431. pref("mousewheel.horizscroll.withnokey.numlines",-1);
  1432.  
  1433. pref("mousewheel.horizscroll.withnokey.sysnumlines",false);
  1434.  
  1435. pref("mousewheel.horizscroll.withcontrolkey.action",2);
  1436.  
  1437. pref("mousewheel.horizscroll.withcontrolkey.numlines",-1);
  1438.  
  1439. pref("mousewheel.horizscroll.withcontrolkey.sysnumlines",false);
  1440.  
  1441. pref("mousewheel.horizscroll.withshiftkey.action",2);
  1442.  
  1443. pref("mousewheel.horizscroll.withshiftkey.numlines",-1);
  1444.  
  1445. pref("mousewheel.horizscroll.withshiftkey.sysnumlines",false);
  1446.  
  1447. pref("mousewheel.horizscroll.withaltkey.action",2);
  1448.  
  1449. pref("mousewheel.horizscroll.withaltkey.numlines",-1);
  1450.  
  1451. pref("mousewheel.horizscroll.withaltkey.sysnumlines",false);
  1452.  
  1453.  
  1454.  
  1455. pref("profile.confirm_automigration",true);
  1456.  
  1457. // profile.migration_behavior determines how the profiles root is set
  1458.  
  1459. // 0 - use NS_APP_USER_PROFILES_ROOT_DIR
  1460.  
  1461. // 1 - create one based on the NS4.x profile root
  1462.  
  1463. // 2 - use, if not empty, profile.migration_directory otherwise same as 0
  1464.  
  1465. pref("profile.migration_behavior",0);
  1466.  
  1467. pref("profile.migration_directory", "");
  1468.  
  1469.  
  1470.  
  1471. // the amount of time (in seconds) that must elapse
  1472.  
  1473. // before we think your mozilla profile is defunct
  1474.  
  1475. // and you'd benefit from re-migrating from 4.x
  1476.  
  1477. // see bug #137886 for more details
  1478.  
  1479. //
  1480.  
  1481. // if -1, we never think your profile is defunct
  1482.  
  1483. // and users will never see the remigrate UI.
  1484.  
  1485. pref("profile.seconds_until_defunct", -1);
  1486.  
  1487. // We can show it anytime from menus
  1488.  
  1489. pref("profile.manage_only_at_launch", false);
  1490.  
  1491.  
  1492.  
  1493. pref("prefs.converted-to-utf8",false);
  1494.  
  1495.  
  1496.  
  1497. // --------------------------------------------------
  1498.  
  1499. // IBMBIDI 
  1500.  
  1501. // --------------------------------------------------
  1502.  
  1503. //
  1504.  
  1505. // ------------------
  1506.  
  1507. //  Text Direction
  1508.  
  1509. // ------------------
  1510.  
  1511. // 1 = directionLTRBidi *
  1512.  
  1513. // 2 = directionRTLBidi
  1514.  
  1515. pref("bidi.direction", 1);
  1516.  
  1517. // ------------------
  1518.  
  1519. //  Text Type
  1520.  
  1521. // ------------------
  1522.  
  1523. // 1 = charsettexttypeBidi *
  1524.  
  1525. // 2 = logicaltexttypeBidi
  1526.  
  1527. // 3 = visualtexttypeBidi
  1528.  
  1529. pref("bidi.texttype", 1);
  1530.  
  1531. // ------------------
  1532.  
  1533. //  Controls Text Mode
  1534.  
  1535. // ------------------
  1536.  
  1537. // 1 = logicalcontrolstextmodeBidiCmd
  1538.  
  1539. // 2 = visualcontrolstextmodeBidi <-- NO LONGER SUPPORTED
  1540.  
  1541. // 3 = containercontrolstextmodeBidi *
  1542.  
  1543. pref("bidi.controlstextmode", 1);
  1544.  
  1545. // ------------------
  1546.  
  1547. //  Numeral Style
  1548.  
  1549. // ------------------
  1550.  
  1551. // 0 = nominalnumeralBidi *
  1552.  
  1553. // 1 = regularcontextnumeralBidi
  1554.  
  1555. // 2 = hindicontextnumeralBidi
  1556.  
  1557. // 3 = arabicnumeralBidi
  1558.  
  1559. // 4 = hindinumeralBidi
  1560.  
  1561. pref("bidi.numeral", 0);
  1562.  
  1563. // ------------------
  1564.  
  1565. //  Support Mode
  1566.  
  1567. // ------------------
  1568.  
  1569. // 1 = mozillaBidisupport *
  1570.  
  1571. // 2 = OsBidisupport
  1572.  
  1573. // 3 = disableBidisupport
  1574.  
  1575. pref("bidi.support", 1);
  1576.  
  1577. // ------------------
  1578.  
  1579. //  Charset Mode
  1580.  
  1581. // ------------------
  1582.  
  1583. // 1 = doccharactersetBidi *
  1584.  
  1585. // 2 = defaultcharactersetBidi
  1586.  
  1587. pref("bidi.characterset", 1);
  1588.  
  1589.  
  1590.  
  1591. pref("bidi.browser.ui", false);
  1592.  
  1593.  
  1594.  
  1595. // used for double-click word selection behavior. Win will override.
  1596.  
  1597. pref("layout.word_select.eat_space_to_next_word", false);
  1598.  
  1599. pref("layout.word_select.stop_at_punctuation", true);
  1600.  
  1601.  
  1602.  
  1603. // pref to control whether or not to replace backslashes with Yen signs
  1604.  
  1605. // in documents encoded in one of Japanese legacy encodings (EUC-JP, 
  1606.  
  1607. // Shift_JIS, ISO-2022-JP)
  1608.  
  1609. pref("layout.enable_japanese_specific_transform", false);
  1610.  
  1611.  
  1612.  
  1613. // pref to force frames to be resizable
  1614.  
  1615. pref("layout.frames.force_resizability", false);
  1616.  
  1617.  
  1618.  
  1619. // pref to permit users to make verified SOAP calls by default
  1620.  
  1621. pref("capability.policy.default.SOAPCall.invokeVerifySourceHeader", "allAccess");
  1622.  
  1623.  
  1624.  
  1625. // if true, allow plug-ins to override internal imglib decoder mime types in full-page mode
  1626.  
  1627. pref("plugin.override_internal_types", false);
  1628.  
  1629. pref("plugin.expose_full_path", false); // if true navigator.plugins reveals full path
  1630.  
  1631.  
  1632.  
  1633. // See bug 136985.  Gives embedders a pref to hook into to show
  1634.  
  1635. // a popup blocker if they choose.
  1636.  
  1637. pref("browser.popups.showPopupBlocker", true);
  1638.  
  1639.  
  1640.  
  1641. // Pref to control whether the viewmanager code does double-buffering or not
  1642.  
  1643. // See http://bugzilla.mozilla.org/show_bug.cgi?id=169483 for further details...
  1644.  
  1645. pref("viewmanager.do_doublebuffering", true);
  1646.  
  1647.  
  1648.  
  1649. // which files will be selected for roaming by default.
  1650.  
  1651. // See sroaming/content/prefs/all.js
  1652.  
  1653. pref("roaming.default.files", "bookmarks.html,abook.mab,cookies.txt");
  1654.  
  1655. // display some general warning to the user about making backups, security etc.
  1656.  
  1657. pref("roaming.showInitialWarning", true);
  1658.  
  1659.  
  1660.  
  1661. // whether use prefs from system
  1662.  
  1663. pref("config.use_system_prefs", false);
  1664.  
  1665.  
  1666.  
  1667. // if the system has enabled accessibility
  1668.  
  1669. pref("config.use_system_prefs.accessibility", false);
  1670.  
  1671.  
  1672.  
  1673. /*
  1674.  
  1675.  * What are the entities that you want Mozilla to save using mnemonic
  1676.  
  1677.  * names rather than numeric codes? E.g. If set, we'll output  
  1678.  
  1679.  * otherwise, we may output 0xa0 depending on the charset.
  1680.  
  1681.  *
  1682.  
  1683.  * "none"   : don't use any entity names; only use numeric codes.
  1684.  
  1685.  * "basic"  : use entity names just for   & < > " for 
  1686.  
  1687.  *            interoperability/exchange with products that don't support more
  1688.  
  1689.  *            than that.
  1690.  
  1691.  * "latin1" : use entity names for 8bit accented letters and other special
  1692.  
  1693.  *            symbols between 128 and 255.
  1694.  
  1695.  * "html"   : use entity names for 8bit accented letters, greek letters, and
  1696.  
  1697.  *            other special markup symbols as defined in HTML4.
  1698.  
  1699.  */
  1700.  
  1701. //pref("editor.encode_entity",                 "html");
  1702.  
  1703.  
  1704.  
  1705. pref("editor.resizing.preserve_ratio",       true);
  1706.  
  1707. pref("editor.positioning.offset",            0);
  1708.  
  1709.  
  1710.  
  1711. pref("dom.max_script_run_time", 5);
  1712.  
  1713.  
  1714.  
  1715. pref("font.name.serif.ar", "Times New Roman");
  1716.  
  1717. pref("font.name.sans-serif.ar", "Arial");
  1718.  
  1719. pref("font.name.monospace.ar", "Courier New");
  1720.  
  1721. pref("font.name.cursive.ar", "Comic Sans MS");
  1722.  
  1723.  
  1724.  
  1725. pref("font.name.serif.el", "Times New Roman");
  1726.  
  1727. pref("font.name.sans-serif.el", "Arial");
  1728.  
  1729. pref("font.name.monospace.el", "Courier New");
  1730.  
  1731. pref("font.name.cursive.el", "Comic Sans MS");
  1732.  
  1733.  
  1734.  
  1735. pref("font.name.serif.he", "Narkisim");
  1736.  
  1737. pref("font.name.sans-serif.he", "Arial");
  1738.  
  1739. pref("font.name.monospace.he", "Fixed Miriam Transparent");
  1740.  
  1741. pref("font.name.cursive.he", "Gutmann Yad");
  1742.  
  1743. pref("font.name-list.serif.he", "Narkisim, David");
  1744.  
  1745. pref("font.name-list.monospace.he", "Fixed Miriam Transparent, Miriam Fixed, Rod, Courier New");
  1746.  
  1747. pref("font.name-list.cursive.he", "Gutmann Yad, Ktav, Arial");
  1748.  
  1749.  
  1750.  
  1751. // For CJK fonts, we list a font twice in name-list, once in the native script and once in English
  1752.  
  1753. // because the name of a CJK font returned by Win32 API is beyond our control and depends on
  1754.  
  1755. // whether or not Mozilla is run on CJK Win 9x/ME or Win 2k/XP with a CJK locale.
  1756.  
  1757. // (see bug 227815)
  1758.  
  1759.  
  1760.  
  1761. pref("font.name.serif.ja", "∩╝¡∩╝│ ∩╝░µÿĵ£¥"); // "MS PMincho"
  1762.  
  1763. pref("font.name.sans-serif.ja", "∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé»"); // "MS PGothic"
  1764.  
  1765. pref("font.name.monospace.ja", "∩╝¡∩╝│ πé┤πé╖πââπé»"); // "MS Gothic"
  1766.  
  1767. pref("font.name-list.serif.ja", "MS PMincho, ∩╝¡∩╝│ ∩╝░µÿĵ£¥, MS Mincho, MS PGothic, MS Gothic");
  1768.  
  1769. pref("font.name-list.sans-serif.ja", "MS PGothic, ∩╝¡∩╝│ ∩╝░πé┤πé╖πââπé», MS Gothic, MS PMincho, MS Mincho");
  1770.  
  1771. pref("font.name-list.monospace.ja", "MS Gothic, ∩╝¡∩╝│ πé┤πé╖πââπé», MS Mincho, ∩╝¡∩╝│ µÿĵ£¥, MS PGothic, MS PMincho");
  1772.  
  1773.  
  1774.  
  1775. pref("font.name.serif.ko", "δ░öφâò"); // "Batang" 
  1776.  
  1777. pref("font.name.sans-serif.ko", "Ω╡┤δª╝"); // "Gulim" 
  1778.  
  1779. pref("font.name.monospace.ko", "Ω╡┤δª╝∞▓┤"); // "GulimChe" 
  1780.  
  1781. pref("font.name.cursive.ko", "Ω╢ü∞ä£"); // "Gungseo"
  1782.  
  1783.  
  1784.  
  1785. pref("font.name-list.serif.ko", "Batang, δ░öφâò, Gulim, Ω╡┤δª╝"); 
  1786.  
  1787. pref("font.name-list.sans-serif.ko", "Gulim, Ω╡┤δª╝"); 
  1788.  
  1789. pref("font.name-list.monospace.ko", "GulimChe, Ω╡┤δª╝∞▓┤"); 
  1790.  
  1791. pref("font.name-list.cursive.ko", "Gungseo, Ω╢ü∞ä£"); 
  1792.  
  1793.  
  1794.  
  1795. pref("font.name.serif.th", "Times New Roman");
  1796.  
  1797. pref("font.name.sans-serif.th", "Arial");
  1798.  
  1799. pref("font.name.monospace.th", "Courier New");
  1800.  
  1801. pref("font.name.cursive.th", "Comic Sans MS");
  1802.  
  1803.  
  1804.  
  1805. pref("font.name.serif.tr", "Times New Roman");
  1806.  
  1807. pref("font.name.sans-serif.tr", "Arial");
  1808.  
  1809. pref("font.name.monospace.tr", "Courier New");
  1810.  
  1811. pref("font.name.cursive.tr", "Comic Sans MS");
  1812.  
  1813.  
  1814.  
  1815. pref("font.name.serif.x-baltic", "Times New Roman");
  1816.  
  1817. pref("font.name.sans-serif.x-baltic", "Arial");
  1818.  
  1819. pref("font.name.monospace.x-baltic", "Courier New");
  1820.  
  1821. pref("font.name.cursive.x-baltic", "Comic Sans MS");
  1822.  
  1823.  
  1824.  
  1825. pref("font.name.serif.x-central-euro", "Times New Roman");
  1826.  
  1827. pref("font.name.sans-serif.x-central-euro", "Arial");
  1828.  
  1829. pref("font.name.monospace.x-central-euro", "Courier New");
  1830.  
  1831. pref("font.name.cursive.x-central-euro", "Comic Sans MS");
  1832.  
  1833.  
  1834.  
  1835. pref("font.name.serif.x-cyrillic", "Times New Roman");
  1836.  
  1837. pref("font.name.sans-serif.x-cyrillic", "Arial");
  1838.  
  1839. pref("font.name.monospace.x-cyrillic", "Courier New");
  1840.  
  1841. pref("font.name.cursive.x-cyrillic", "Comic Sans MS");
  1842.  
  1843.  
  1844.  
  1845. pref("font.name.serif.x-unicode", "Times New Roman");
  1846.  
  1847. pref("font.name.sans-serif.x-unicode", "Arial");
  1848.  
  1849. pref("font.name.monospace.x-unicode", "Courier New");
  1850.  
  1851. pref("font.name.cursive.x-unicode", "Comic Sans MS");
  1852.  
  1853.  
  1854.  
  1855. pref("font.name.serif.x-western", "Times New Roman");
  1856.  
  1857. pref("font.name.sans-serif.x-western", "Arial");
  1858.  
  1859. pref("font.name.monospace.x-western", "Courier New");
  1860.  
  1861. pref("font.name.cursive.x-western", "Comic Sans MS");
  1862.  
  1863.  
  1864.  
  1865. pref("font.name.serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1866.  
  1867. pref("font.name.sans-serif.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1868.  
  1869. pref("font.name.monospace.zh-CN", "σ«ïΣ╜ô"); //MS Song
  1870.  
  1871. pref("font.name-list.serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1872.  
  1873. pref("font.name-list.sans-serif.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1874.  
  1875. pref("font.name-list.monospace.zh-CN", "MS Song, σ«ïΣ╜ô, SimSun");
  1876.  
  1877.  
  1878.  
  1879. // Per Taiwanese users' demand. They don't want to use TC fonts for
  1880.  
  1881. // rendering Latin letters. (bug 88579)
  1882.  
  1883. pref("font.name.serif.zh-TW", "Times New Roman"); 
  1884.  
  1885. pref("font.name.sans-serif.zh-TW", "Arial"); 
  1886.  
  1887. pref("font.name.monospace.zh-TW", "τ┤░µÿÄΘ½ö");  // MingLiU
  1888.  
  1889. pref("font.name-list.serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiu,τ┤░µÿÄΘ½ö,MingLiU"); 
  1890.  
  1891. pref("font.name-list.sans-serif.zh-TW", "µû░τ┤░µÿÄΘ½ö,PMingLiU,τ┤░µÿÄΘ½ö,MingLiU");
  1892.  
  1893. pref("font.name-list.monospace.zh-TW", "MingLiU,τ┤░µÿÄΘ½ö");
  1894.  
  1895.  
  1896.  
  1897. // hkscsm3u.ttf (HKSCS-2001) :  http://www.microsoft.com/hk/hkscs 
  1898.  
  1899. // Hong Kong users have the same demand about glyphs for Latin letters (bug 88579) 
  1900.  
  1901. pref("font.name.serif.zh-HK", "Times New Roman"); 
  1902.  
  1903. pref("font.name.sans-serif.zh-HK", "Arial"); 
  1904.  
  1905. pref("font.name.monospace.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS"); 
  1906.  
  1907. pref("font.name-list.serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiu_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö"); 
  1908.  
  1909. pref("font.name-list.sans-serif.zh-HK", "τ┤░µÿÄΘ½ö_HKSCS, MingLiU_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");  
  1910.  
  1911. pref("font.name-list.monospace.zh-HK", "MingLiU_HKSCS,  τ┤░µÿÄΘ½ö_HKSCS, Ming(for ISO10646), MingLiU, τ┤░µÿÄΘ½ö");
  1912.  
  1913.  
  1914.  
  1915. pref("font.name.serif.x-devanagari", "Mangal");
  1916.  
  1917. pref("font.name.sans-serif.x-devanagari", "Raghindi");
  1918.  
  1919. pref("font.name.monospace.x-devanagari", "Mangal");
  1920.  
  1921. pref("font.name-list.serif.x-devanagari", "Mangal, Raghindi");
  1922.  
  1923. pref("font.name-list.monospace.x-devanagari", "Mangal, Raghindi");
  1924.  
  1925.  
  1926.  
  1927. pref("font.name.serif.x-tamil", "Latha");
  1928.  
  1929. pref("font.name.sans-serif.x-tamil", "Code2000");
  1930.  
  1931. pref("font.name.monospace.x-tamil", "Latha");
  1932.  
  1933. pref("font.name-list.serif.x-tamil", "Latha, Code2000");
  1934.  
  1935. pref("font.name-list.monospace.x-tamil", "Latha, Code2000");
  1936.  
  1937.  
  1938.  
  1939. pref("font.default", "serif");
  1940.  
  1941. pref("font.size.variable.ar", 16);
  1942.  
  1943. pref("font.size.fixed.ar", 13);
  1944.  
  1945.  
  1946.  
  1947. pref("font.size.variable.el", 16);
  1948.  
  1949. pref("font.size.fixed.el", 13);
  1950.  
  1951.  
  1952.  
  1953. pref("font.size.variable.he", 16);
  1954.  
  1955. pref("font.size.fixed.he", 13);
  1956.  
  1957.  
  1958.  
  1959. pref("font.size.variable.ja", 16);
  1960.  
  1961. pref("font.size.fixed.ja", 16);
  1962.  
  1963.  
  1964.  
  1965. pref("font.size.variable.ko", 16);
  1966.  
  1967. pref("font.size.fixed.ko", 16);
  1968.  
  1969.  
  1970.  
  1971. pref("font.size.variable.th", 16);
  1972.  
  1973. pref("font.size.fixed.th", 13);
  1974.  
  1975.  
  1976.  
  1977. pref("font.size.variable.tr", 16);
  1978.  
  1979. pref("font.size.fixed.tr", 13);
  1980.  
  1981.  
  1982.  
  1983. pref("font.size.variable.x-baltic", 16);
  1984.  
  1985. pref("font.size.fixed.x-baltic", 13);
  1986.  
  1987.  
  1988.  
  1989. pref("font.size.variable.x-central-euro", 16);
  1990.  
  1991. pref("font.size.fixed.x-central-euro", 13);
  1992.  
  1993.  
  1994.  
  1995. pref("font.size.variable.x-cyrillic", 16);
  1996.  
  1997. pref("font.size.fixed.x-cyrillic", 13);
  1998.  
  1999.  
  2000.  
  2001. pref("font.size.variable.x-devanagari", 16);
  2002.  
  2003. pref("font.size.fixed.x-devanagari", 13);
  2004.  
  2005.  
  2006.  
  2007. pref("font.size.variable.x-tamil", 16);
  2008.  
  2009. pref("font.size.fixed.x-tamil", 13);
  2010.  
  2011.  
  2012.  
  2013. pref("font.size.variable.x-unicode", 16);
  2014.  
  2015. pref("font.size.fixed.x-unicode", 13);
  2016.  
  2017.  
  2018.  
  2019. pref("font.size.variable.x-western", 16);
  2020.  
  2021. pref("font.size.fixed.x-western", 13);
  2022.  
  2023.  
  2024.  
  2025. pref("font.size.variable.zh-CN", 16);
  2026.  
  2027. pref("font.size.fixed.zh-CN", 16);
  2028.  
  2029.  
  2030.  
  2031. pref("font.size.variable.zh-TW", 16);
  2032.  
  2033. pref("font.size.fixed.zh-TW", 16);
  2034.  
  2035.  
  2036.  
  2037. pref("font.size.variable.zh-HK", 16);
  2038.  
  2039. pref("font.size.fixed.zh-HK", 16);
  2040.  
  2041.  
  2042.  
  2043. pref("font.size.nav4rounding", false);
  2044.  
  2045.  
  2046.  
  2047. pref("ui.key.menuAccessKeyFocuses", true);
  2048.  
  2049.  
  2050.  
  2051. // override double-click word selection behavior.
  2052.  
  2053. pref("layout.word_select.eat_space_to_next_word", true);
  2054.  
  2055.  
  2056.  
  2057. // print_extra_margin enables platforms to specify an extra gap or margin
  2058.  
  2059. // around the content of the page for Print Preview only
  2060.  
  2061. pref("print.print_extra_margin", 90); // twips (90 twips is an eigth of an inch)
  2062.  
  2063.  
  2064.  
  2065. // This indicates whether it should use the native dialog or the XP Dialog
  2066.  
  2067. pref("print.use_native_print_dialog", true);
  2068.  
  2069.  
  2070.  
  2071. // Locate Java by scanning the Sun JRE installation directory with a minimum version
  2072.  
  2073. // Note: Does not scan if security.enable_java is not true
  2074.  
  2075. pref("plugin.scan.SunJRE", "1.3");
  2076.  
  2077.  
  2078.  
  2079. // Locate plugins by scanning the Adobe Acrobat installation directory with a minimum version
  2080.  
  2081. pref("plugin.scan.Acrobat", "5.0");
  2082.  
  2083.  
  2084.  
  2085. // Locate plugins by scanning the Quicktime installation directory with a minimum version
  2086.  
  2087. pref("plugin.scan.Quicktime", "5.0");
  2088.  
  2089.  
  2090.  
  2091. // Locate and scan the Window Media Player installation directory for plugins with a minimum version
  2092.  
  2093. pref("plugin.scan.WindowsMediaPlayer", "7.0");
  2094.  
  2095.  
  2096.  
  2097. // Locate plugins by the directories specified in the Windows registry for PLIDs
  2098.  
  2099. // Which is currently HKLM\Software\MozillaPlugins\xxxPLIDxxx\Path
  2100.  
  2101. pref("plugin.scan.plid.all", true);
  2102.  
  2103.  
  2104.  
  2105. // Controls the scanning of the Navigator 4.x directory for plugins
  2106.  
  2107. // When pref is missing, the default is to pickup popular plugins such as
  2108.  
  2109. // Flash, Shockwave, Acrobat, and Quicktime. If set to true, ALL plugins
  2110.  
  2111. // will be picked up and if set to false the scan will not happen at all
  2112.  
  2113. //pref("plugin.scan.4xPluginFolder", false);
  2114.  
  2115.  
  2116.  
  2117. // Help Windows NT, 2000, and XP dialup a RAS connection
  2118.  
  2119. // when a network address is unreachable.
  2120.  
  2121. pref("network.autodial-helper.enabled", true);
  2122.  
  2123.  
  2124.  
  2125. // Pref to control whether we set ddeexec subkeys for the http
  2126.  
  2127. // Internet shortcut protocol if we are handling it.  These
  2128.  
  2129. // subkeys will be set only while we are running (to avoid the
  2130.  
  2131. // problem of Windows showing an alert when it tries to use DDE
  2132.  
  2133. // and we're not already running).
  2134.  
  2135. pref("advanced.system.supportDDEExec", true);
  2136.  
  2137.  
  2138.  
  2139. // Use CP932 compatible map for JIS X 0208
  2140.  
  2141. pref("intl.jis0208.map", "CP932");
  2142.  
  2143.  
  2144.  
  2145.  
  2146.  
  2147.  
  2148.  
  2149.  
  2150.  
  2151.  
  2152.  
  2153.  
  2154.  
  2155.  
  2156.  
  2157.  
  2158.  
  2159.